home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 19
/
CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso
/
CUCD
/
Online
/
Apache
/
cgi-bin
/
parseform.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-06-11
|
309b
|
24 lines
/* Parses test form */
options results
say "Content-Type: text/html"
say ""
getvar REQUEST_METHOD
method = result
getvar CONTENT_TYPE
type = result
getvar CONTENT_LENGTH
length = result
say "<UL>"
say "<LI> method is " || method
say "<LI> type is " || type
say "<LI> length is " || length
say "</UL>"